home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / FILER / SMART.ZIP / !SmartDir / h / cmos next >
Text File  |  1997-10-21  |  379b  |  17 lines

  1. #ifndef __cmos_h
  2. #define __cmos_h
  3.  
  4. /* mask_and_value is a byte,
  5.    upper nibble = mask (bit set in mask => cleared in value)
  6.    lower nibble = bits to set
  7.    Only bits 0-3 of each nibble are significant
  8. */
  9. extern void cmos_set(int mask_and_value);
  10.  
  11. /* Restores value from just before cmos_set was last called */
  12. extern void cmos_restore(void);
  13.  
  14. extern bool cmos_changed;
  15.  
  16. #endif
  17.